home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 19.zip / BS1 part 19 / Util Collection 5 BS1.adf / Assembler / README < prev   
Text File  |  1988-01-19  |  877b  |  17 lines

  1. ASSEMBLY:
  2. Basically, this is as straightforward as you can get.  The data is generated
  3. top to bottom with forward references.  The event handler is a simple look
  4. up table with very clear access procedures outlined in the "example.asm"
  5. file.  The only gotcha that I know about is with the "'" character in
  6. strings, like window names and IntuiText.  You must double these apostrophes
  7. to make them assemble.
  8.  
  9. You must put any ImageData generated into CHIP memory somehow.  If you are
  10. using C.A.P.E. 68K, you can just stick "Section Sectionname,data,CHIP" lines
  11. in front of the ImageData sections and the DATA statements in right after
  12. them for the rest of the data.  You can follow this same plan for other
  13. assemblers as well, but for some you will need to move the entire data hunk
  14. to CHIP at link time.
  15.  
  16. InovaTools1 interfacing routines are available now for assembly language.
  17.